home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol06 / 02 / winmem32 / callfrnt.asm < prev    next >
Assembly Source File  |  1991-02-28  |  448b  |  26 lines

  1. ;
  2. ; These routines provide FAR returns to the Windows front end from
  3. ; the kernel.
  4. ; Assembled using Phar Lap's 386|ASM
  5. ;
  6.  
  7. pmcode    segment byte public use32
  8. pmcode    ends
  9.  
  10. extrn     action:near
  11.  
  12. pmcode    segment
  13.  
  14.           assume    cs:pmcode
  15.  
  16. ; Routine to evaluate a expression
  17.  
  18.           public    actionF
  19. actionF   proc      far
  20.           call      action
  21.           ret
  22. actionF   endp
  23.  
  24. pmcode    ends
  25.           end
  26.